home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / GW AdaEd 1.4.2 / GWAdaDemos / GWU Demos / screenio.ads < prev    next >
Text File  |  1994-01-09  |  443b  |  19 lines

  1. --
  2. --  Screen_IO contains a task which controls the concurrency in the
  3. --  I/O to the screen.
  4. --  Arthur Vargas Lopes, The George Washington University
  5. --
  6. WITH Screen;
  7. USE Screen;
  8. PACKAGE Screen_IO IS
  9.  
  10.     SUBTYPE Height   IS Screen.Height;
  11.     SUBTYPE Width    IS Screen.Width;
  12.     SUBTYPE Position IS Screen.Position;
  13.     
  14.     TASK Terminal IS
  15.         ENTRY WriteAt(Where: Screen.Position; What : String );
  16.     END Terminal;
  17.  
  18. END Screen_IO;
  19.